home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / egebook.lha / ege.book / 5 / Example.h < prev    next >
C/C++ Source or Header  |  1992-06-05  |  318b  |  18 lines

  1. #ifndef Example_h
  2. #define Example_h
  3.  
  4. #include <String.h>
  5. #include <bool.h>
  6.  
  7. class Example {
  8.  public:
  9.   virtual bool identify(String &) = 0;
  10.   virtual void print() = 0;
  11.   virtual void maintain() = 0;
  12.   virtual Example *alike(String &) = 0;
  13.   virtual bool add(Example *) = 0;
  14.   virtual Example* select() = 0;
  15. };
  16.  
  17. #endif
  18.